home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960715-19961006 / 000427_news@columbia.edu _Tue Oct 1 10:45:35 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id KAA07604 for <kermit.misc@watsun.cc.columbia.edu>; Tue, 1 Oct 1996 10:45:35 -0400 (EDT)
  3. Received: (from news@localhost) by newsmaster.cc.columbia.edu (8.7.5/8.7.3) id KAA08029 for kermit.misc@watsun; Tue, 1 Oct 1996 10:45:34 -0400 (EDT)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: scripting after connect (3.14)
  8. Date: 1 Oct 1996 14:45:13 GMT
  9. Organization: Columbia University
  10. Lines: 21
  11. Message-ID: <52rapp$lcn@apakabar.cc.columbia.edu>
  12. References: <3250D96F.66B3@pth.nl>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <3250D96F.66B3@pth.nl>,
  16. Frank Kloprogge  <F.J.M.Kloprogge@pth.nl> wrote:
  17. : I'm looking for a way to send a character to the host computer after the
  18. : connect command.
  19. : I'm using a script at the moment for connecting to a host machine.
  20. : However, after the connect command, the screen is somewhat garbled.
  21. : When I type ctrl-W (which is the redraw-command for i.e. Ingres),
  22. : the screen turns normal.
  23. If the screen is garbled, that is most likely an indication of a lack of
  24. effective flow control and/or an unbuffered UART and/or interrupt conflicts
  25. in your PC.  If you fix the underlying problems, the garbled screens should
  26. go away.
  27.  
  28. To answer your question:
  29.  
  30.   define wconnect output \23, connect
  31.  
  32. Then use "wconnect" ("wc" for short) instead of "connect".
  33.  
  34. - Frank